home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Libraries / stdwin / Packs / vt / vtpanic.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-10-18  |  233 b   |  17 lines  |  [TEXT/????]

  1. /* Panic function, not if NDEBUG.  The application may provide a better one. */
  2.  
  3. #include "vtimpl.h"
  4.  
  5. #ifndef NDEBUG
  6.  
  7. void
  8. vtpanic(msg)
  9.     char *msg;
  10. {
  11.     fprintf(stderr, "vtpanic: %s\n", msg);
  12.     wdone();
  13.     abort();
  14. }
  15.  
  16. #endif /* NDEBUG */
  17.